home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / util / misc / SuperToto_New.lha / DemoSuperToto / SuperToto_Install < prev    next >
Encoding:
Text File  |  1999-10-03  |  1.6 KB  |  67 lines

  1. ; $VER: Script d'installazione per SuperToto Demo Version 1.8 (24.06.99)
  2.  
  3. (set @default-dest "Work:")
  4. (set #DeOn "Demo/")
  5. (set #Font "Fonts/")
  6. (set #Lib "Libs/")
  7.  
  8. (message (cat "SuperToto Demo Version 1.8 - Rev. 24 Giugno 1999 \n \n"
  9. "Scritto da Nicolò Sportaro e Nando Gentile"))
  10. (complete 0)
  11.  
  12. (copyfiles
  13.     (prompt "Copia dei font necessari per DemoSuperToto")
  14.     (help "Ora l'installer provvederà a copiare nel vostro \n" 
  15.               "sistema i fonts GC611. Qualora non lo desideraste, \n"
  16.               "potete sempre deselezionare questa scelta, ma \n"
  17.               "ricordate che SuperToto non funziona senza \n"
  18.              "questi fonts")
  19.     (source #Font)
  20.     (dest "Fonts:")
  21.     (all)
  22.     (confirm)
  23. )
  24. (complete 10)
  25.  
  26. (copyfiles 
  27.      (source #Lib )    (dest "Libs:") (all)
  28. )
  29. (complete 20)
  30.  
  31. (set target
  32.     (tackon
  33.         (askdir
  34.             (prompt "Seleziona la destinazione ove creare il cassetto chiamato DemoSuperToto")
  35.             (help @askdir-help)
  36.             (default @default-dest)
  37.         )
  38.         "DemoSuperToto"
  39.     )
  40. )
  41.  
  42. (makedir target (infos))
  43. (set @default-dest target)
  44.  
  45. (copyfiles
  46.     (prompt "Installo DemoSuperToto ")
  47.     (help "Installazione di DemoSuperToto \n \n" @copyfiles-help)
  48.     (source #DeOn)
  49.     (dest target)
  50.     ( ALL )
  51. )
  52. (complete 50)
  53.  
  54. (copyfiles
  55.     (prompt "Installo HelpSuperToto in " target )
  56.     (help "Installazione di SuperToto.Guide \n \n" @copyfiles-help)
  57.     (source "")
  58.     (dest target)
  59.     (choices "HelpSuperToto" )
  60.     (confirm)
  61.     (infos)
  62. )
  63. (complete 100)
  64.  
  65. (message (cat "Installazione di DemoSuperToto terminata. Il programma \n"
  66.     "non richiede alcun assegnamento particolare per funzionare."))
  67.